home *** CD-ROM | disk | FTP | other *** search
- /* KNOW-HOW uses some arrays for transferring messages with
- non-standart formate. global[MAX_GLOBAL == 200] - the array
- of char*; global_i[MAX_GLOBAL_I == 24] - array of integers.
- Usually, if we choose n-th item of menu, int global_num
- keeps n, and global[global_num] may keep item string (or not,
- for example for menu with non-text (pictograms) items).
- event e keeps last event obtained.
- */
-
- #ifndef __GLOBAL_H_
- #define __GLOBAL_H_
-
- #include "addevent.h"
-
- extern int global_num;
- extern char* global[];
- extern int global_i[];
- extern event e;
-
- #define MAX_GLOBAL 511
- #define MAX_GLOBAL_I 511
-
- void global_remove();
- void global_init();
-
- #endif __GLOBAL_H_